home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Netware Super Library
/
Netware Super Library.iso
/
pgm_tool
/
ubmark
/
mspawn.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-09-18
|
177b
|
18 lines
/*****
* mspawn.c
* compile to mspawn
* place in /bin
*****/
#include <stdio.h>
main() {
if (fork() == 0)
execv("workmal.exe", NULL);
;
;
return(0);
}